home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 295_01.zip / BOOL.H < prev    next >
Text File  |  1993-04-22  |  316b  |  16 lines

  1. /*    Copyright (c) 1989 Citadel    */
  2. /*       All Rights Reserved        */
  3.  
  4. /* #ident    "bool.h    1.2 - 89/10/31" */
  5.  
  6. /* boolean definitions */
  7.  
  8. #ifndef BOOL_H        /* prevent multiple includes */
  9. #define BOOL_H
  10.  
  11. typedef    unsigned char    bool;
  12. #define TRUE    ((bool)1)
  13. #define FALSE    ((bool)0)
  14.  
  15. #endif    /* #ifndef BOOL_H */
  16.